home *** CD-ROM | disk | FTP | other *** search
Wrap
XSetup plugin | 2002-04-18 | 1.3 KB | 47 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0" "TYPE"="2" "COUNT"="1" "UIPATH"="System\File System\Windows 9x/ME Options\Performance" "NAME"="DMA Buffer Size" "OSVERSION"="10101" "VERSION"="1.03" "LANGUAGE"="VBScript" "TEXT 1"="DMA Buffer(KB)" "DESCRIPTION 1"="To increase your 16-bit Direct Memory Access (DMA) channel buffer to maximum size: 64 (in KiloBytes). Affects ALL I/O (Input/Output) DMA operations: sound card FM/wavetable, MIDI playback/recording, disk buffered reads/writes. Default value is 16. Recommended value is 64." "AUTHOR"="CptSiskoX (Xteq Systems)" "CONTACTURL"="http://members.fortunecity.com/computingx/" "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved" "COMMENT 1"="For X-Setup program information, go to http://www.xteq.com." "COMMENT 2"="Thanks to my friend AXCEL216 http://user.aol.com/axcel216/ for tip." sf="SYSTEM.INI" ss="386Enh" v1="DMABufferSize" Sub Plugin_Initialize i=IniReadValue(sf,ss,v1) SetUIElement 1,i End Sub Sub Plugin_CheckData(ElementIndex) End Sub Sub Plugin_Apply(ElementIndex,ElementSubIndex) i=GetUIElement(1) if len(i)=0 then Call IniWriteValue(sf,ss,v1,"") else Call IniWriteValue(sf,ss,v1,i) end if Restart End Sub Sub Plugin_Terminate End Sub